home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-12-04 | 415 b | 28 lines | [TEXT/MPS ] |
- include 'traps.a'
- ;
- ; Apple Macintosh Developer Technical Support
- ;
- ; File: listCDEF.a
- ; Written by: Eric Soldan
- ;
- ; Copyright © 1990-1991 Apple Computer, Inc.
- ; All rights reserved.
- ;
- ;
-
- case on
-
- seg 'listCDEF'
- jmpInstruction PROC
- jsr mayBreak
- movea.l procPtr,A0
- jmp (A0)
- procPtr dc.l 0
- mayBreak rts ;Put a _Debugger statement in front
- ;of the rts if you need to break.
-
- ENDP
-
- END
-
-